home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MUTEXES.PAK / MUTEXES.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  83 lines

  1. // mutexes.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. // This sample application is derived from the Mutex application
  14. // distributed with Jeffrey Richter's "Advanced Windows" programming book
  15. // (Microsoft Press).  See the book for more information about Win32
  16. // programming topics, including thread synchronization.
  17.  
  18. #include "stdafx.h"
  19. #include "mutexes.h"
  20. #include "mutexdlg.h"
  21.  
  22. #ifdef _DEBUG
  23. #undef THIS_FILE
  24. static char THIS_FILE[] = __FILE__;
  25. #endif
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMutexesApp
  29.  
  30. BEGIN_MESSAGE_MAP(CMutexesApp, CWinApp)
  31.     //{{AFX_MSG_MAP(CMutexesApp)
  32.         // NOTE - the ClassWizard will add and remove mapping macros here.
  33.         //    DO NOT EDIT what you see in these blocks of generated code!
  34.     //}}AFX_MSG
  35.     ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  36. END_MESSAGE_MAP()
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CMutexesApp construction
  40.  
  41. CMutexesApp::CMutexesApp()
  42. {
  43.     // TODO: add construction code here,
  44.     // Place all significant initialization in InitInstance
  45. }
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // The one and only CMutexesApp object
  49.  
  50. CMutexesApp theApp;
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CMutexesApp initialization
  54.  
  55. BOOL CMutexesApp::InitInstance()
  56. {
  57.     // Standard initialization
  58.     // If you are not using these features and wish to reduce the size
  59.     //  of your final executable, you should remove from the following
  60.     //  the specific initialization routines you do not need.
  61.  
  62.     Enable3dControls();
  63.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  64.  
  65.     CMutexesDlg dlg;
  66.     m_pMainWnd = &dlg;
  67.     int nResponse = dlg.DoModal();
  68.     if (nResponse == IDOK)
  69.     {
  70.         // TODO: Place code here to handle when the dialog is
  71.         //  dismissed with OK
  72.     }
  73.     else if (nResponse == IDCANCEL)
  74.     {
  75.         // TODO: Place code here to handle when the dialog is
  76.         //  dismissed with Cancel
  77.     }
  78.  
  79.     // Since the dialog has been closed, return FALSE so that we exit the
  80.     //  application, rather than start the application's message pump.
  81.     return FALSE;
  82. }
  83.